home *** CD-ROM | disk | FTP | other *** search
/ Scene Storm / Scene Storm - Volume 1.iso / coding / c / vbcc / machines / amiga68k / libsrc / stdio / scanf.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-09-11  |  159 b   |  11 lines

  1. #include <stdio.h>
  2.  
  3. int scanf(const char *fmt,...)
  4. {
  5.     va_list vl;int n;
  6.     va_start(vl,fmt);
  7.     n=vfscanf(stdin,fmt,vl);
  8.     va_end(vl);
  9.     return(n);
  10. }
  11.